Skip to main content

Getting Started

The Minotaur Sales API exposes endpoints for third-party integrations.

Base URL​

https://api.minotaur.io

Authentication Header​

All external requests must include:

Authorization: X-API-Key YOUR_API_KEY

Use X-API-Key as the authorization scheme (not Bearer).

Quick Example​

curl -X POST https://api.minotaur.io/api/ext/contacts/list \
-H "Authorization: X-API-Key YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"filters": {},
"paginate": { "page": 1, "limit": 20 }
}'